home *** CD-ROM | disk | FTP | other *** search
/ Over 1,000 Windows 95 Programs / Over 1000 Windows 95 Programs (Microforum) (Disc 1).iso / 0091 / bfsend.bat < prev    next >
DOS Batch File  |  1997-03-24  |  2KB  |  65 lines

  1. Echo off
  2. REM *********************************************************************/
  3. REM                                                                     */
  4. REM   SYSTEM       : HQ-FAX, Uitilities                                 */
  5. REM   COPYRIGHT    : (c) 1993 HTF CONSULTING                            */
  6. REM                                                                     */
  7. REM *********************************************************************/
  8. REM                                                                     */
  9. REM   BAT file name: BFSend.bat                                         */
  10. REM   DESCRIPTION  : This batch file drives the DOS command line send   */
  11. REM                  for the BitFax /SR by Bit Software                 */
  12. REM                  serving the following FAX modems:                  */
  13. REM                  Beta Race, AST, IBM, Logicode, Texas Instruments   */
  14. REM                  Zoltrix, etc.                                      */
  15. REM                                                                     */
  16. REM *********************************************************************/
  17. REM
  18. if %1 == 1 goto Covrsolo
  19. if %1 == 2 goto Docsolo
  20. if %1 == 3 goto CovrwDoc
  21. if %1 == 4 goto Docmany
  22. if %1 == 5 goto CDocmany
  23.  
  24. REM %1 isn't 1,2, or 3 - must be a file name
  25. CLS
  26. Echo Sending Document %1 w/out cover letter to %2
  27. BITFAX -P%2 -F%1.BFX
  28. goto quit
  29.  
  30. :Covrsolo
  31. CLS
  32. Echo Sending Cover letter solo to %3
  33. BITFAX -P%3 -FCovrletr.BFX
  34. goto quit
  35.  
  36. :Docsolo
  37. CLS
  38. Echo Sending Document %2 w/out cover letter to %3
  39. BITFAX -P%3 -F%2.BFX
  40. goto quit
  41.  
  42. :CovrwDoc
  43. CLS
  44. Echo Sending Document "%2" with cover letter to %3
  45. BITFAX -P%3 -FCovrletr.BFX -F%2.BFX
  46. goto quit
  47.  
  48. :CDocmany
  49. CLS
  50. Echo Sending multi-file document "%2" with cover letter  to %3
  51. Copy Covrletr.BFX %2.f00
  52. Erase Covrletr.BFX
  53. goto Preplist
  54.  
  55. :Docmany
  56. CLS
  57. Echo Sending multi-file document "%2" w/out cover letter to %3
  58.  
  59. :Preplist
  60. Buildlst.exe %1 ##include=
  61. BITFAX -F%1.LST -P%2
  62.  
  63. :Quit
  64. Echo on
  65.